home *** CD-ROM | disk | FTP | other *** search
- (*===========================================================================*)
- (* Chain action routines *)
- (* *)
- (* Copyright 1990 by H. Roy Engehausen. All rights reserved. *)
- (* This software may be freely distributed and used, but it may not *)
- (* under any circumstances be sold by anyone other than the author. *)
- (* It may be distributed by a commercial company as long as it is *)
- (* for no cost. *)
- (* *)
- (*===========================================================================*)
-
- (*=========================================================================*)
- (* Sub procedure to chain an action *)
- (*=========================================================================*)
-
- PROCEDURE chain_action;
- BEGIN;
-
- IF last_msg_action = NIL THEN
- first_msg_action := new_msg_action
- ELSE
- last_msg_action^.next_action := new_msg_action;
-
- last_msg_action := new_msg_action;
-
- END;